Core Web Development |
HTML |
Formats text and content for static websites. |
<h1>Welcome to Malone University</h1> |
Core Web Development |
CSS |
Styles HTML to make it look better and be more functional. |
h1 { color: blue; } |
Core Web Development |
JavaScript |
Adds dynamic, interactive features to web pages. |
alert("Hello, World!"); |
Core Web Development |
Bootstrap |
CSS framework for building responsive websites quickly. |
<button class="btn btn-primary">Click Me</button> |
Core Web Development |
React |
JavaScript library for building user interfaces. |
const App = () => <h1>Hello React!</h1>; |
Core Web Development |
jQuery |
Makes JavaScript easier to write. |
$("#demo").hide(); |
Core Web Development |
AngularJS |
JavaScript framework for dynamic web apps. |
<p ng-bind="name"></p> |
Core Web Development |
Vue |
JavaScript framework for building UIs. |
<p>{{ message }}</p> |
Core Web Development |
Sass |
CSS preprocessor for faster styling. |
$primary: blue; body { color: $primary; } |
Programming Languages |
Python |
General-purpose language for apps, automation, and data. |
print("Hello, World!") |
Programming Languages |
Basic |
Beginner’s language for learning syntax. |
PRINT "Hello World" |
Programming Languages |
C |
Foundational language for systems programming. |
printf("Hello, World!\n"); |
Programming Languages |
C++ |
High-performance programming for games and software. |
std::cout << "Hello, World!" << std::endl; |
Programming Languages |
C# |
Microsoft’s language for apps and enterprise solutions. |
Console.WriteLine("Hello, World!"); |
Programming Languages |
Java |
Widely used for enterprise apps and Android. |
System.out.println("Hello, World!"); |
Programming Languages |
PHP |
Server-side scripting for dynamic websites. |
<?php echo "Hello, World!"; ?> |
Programming Languages |
Go |
Fast, compiled language for modern apps. |
fmt.Println("Hello, World!") |
Programming Languages |
Kotlin |
Modern language compatible with Java. |
println("Hello, World!") |
Programming Languages |
Rust |
High-performance systems language. |
println!("Hello, World!"); |
Programming Languages |
R |
Language for statistics and data visualization. |
print("Hello, World!") |
Programming Languages |
Bash |
Scripting language for Linux command automation. |
echo "Hello, World!" |
Databases |
SQL |
Language for managing and querying databases. |
SELECT * FROM users; |
Databases |
MySQL |
Popular open-source relational database. |
CREATE DATABASE school; |
Databases |
PostgreSQL |
Advanced open-source database supporting SQL & JSON. |
SELECT name->>'first' FROM students; |
Databases |
MongoDB |
NoSQL database storing JSON-like documents. |
db.students.insertOne({ name: "John" }); |
Backend & Server-Side |
Node.js |
Runs JavaScript on the server. |
console.log("Server running..."); |
Backend & Server-Side |
Django |
Python backend framework for web apps. |
urlpatterns = [path('', views.home)] |
Backend & Server-Side |
ASP (Active Server Pages) |
Microsoft’s framework for dynamic sites. |
<% Response.Write("Hello, World!") %> |
Data Science & AI |
NumPy |
Python library for numerical computing. |
import numpy as np; np.array([1,2,3]) |
Data Science & AI |
Pandas |
Python library for working with datasets. |
import pandas as pd; pd.DataFrame({"Name":["John"]}) |
Data Science & AI |
SciPy |
Scientific computing library built on NumPy. |
from scipy import stats |
Data Science & AI |
Machine Learning |
AI that learns from data. |
model.fit(X_train, y_train) |
Data Science & AI |
Data Science |
Using statistics, analysis, and ML for insights. |
import seaborn as sns; sns.pairplot(data) |
Data Science & AI |
Generative AI |
AI that creates text, images, or code. |
ai.generate("Write a poem about the ocean") |
Development Tools |
Git |
Version control for tracking code changes. |
git commit -m "Initial commit" |
Development Tools |
GitHub/GitLab/Bitbucket |
Remote code repositories. |
git push origin main |
Development Tools |
Excel |
Spreadsheet program for organizing data. |
=SUM(A1:A10) |
Development Tools |
XML |
Markup language for storing data. |
<user><name>John</name></user> |
Development Tools |
DSA (Data Structures & Algorithms) |
Core CS concepts for problem-solving. |
stack = [1, 2, 3] # Push and pop elements |